051b99e6953ee8fc3b064ced83c840ae75fb0794,source/jetbrains/mps/nodeEditor/cellExplorer/CellExplorerView.java,CellExplorerView,update,#,88
Before Change
return;
}
myCurrentEditor = ((NodeEditor) getEditorsPane().getCurrentEditor()).getEditorComponent();
if (myCurrentEditor != null) myCurrentEditor.addRebuildListener(myRebuildListener);
myTree.rebuildTree();
}
After Change
return;
}
myCurrentEditor = getEditorsPane().getCurrentEditor().getCurrentEditorComponent();
if (myCurrentEditor != null) myCurrentEditor.addRebuildListener(myRebuildListener);
myTree.rebuildTree();
}